1. /* snmfigcl.cpp by K.Tsuru */
  2. // function ID = 111
  3. /**************************************
  4. SNumber class
  5. It clears figure[].
  6. **************************************/
  7. #ifndef SN_H
  8. #include "sn.h"
  9. #endif
  10. void SNumber::FigureClear(uint from, uint to) {
  11. if(to < aTail || from > aHead) return;
  12. figure.clear(from, to);
  13. if(to > aTail) {
  14. while(to < figure.size() && figure(to) == 0) to++;
  15. if(to < figure.size()) aTail = to;
  16. else SetZero();
  17. }
  18. }

snmfigcl.cpp : last modifiled at 2003/04/13 13:34:36(466 bytes)
created at 2016/04/11 11:36:47
The creation time of this html file is 2017/10/27 10:59:17 (Fri Oct 27 10:59:17 2017).